home *** CD-ROM | disk | FTP | other *** search
/ The Virtual Portfolio - N…a Showcase - Book 5 1995 / VIRTUAL [md5 EC7DB5CC033E38E511F666CE80BCE509].ISO / mac / Main / VP.mac / 00120.ls < prev    next >
Encoding:
Text File  |  1995-07-18  |  815 b   |  37 lines

  1. on enterFrame
  2.   set the visible of sprite 13 to 0
  3.   set the visible of sprite 14 to 0
  4.   set the visible of sprite 15 to 0
  5.   set the visible of sprite 16 to 0
  6.   set the visible of sprite 17 to 0
  7.   set the visible of sprite 18 to 0
  8.   set the visible of sprite 19 to 0
  9.   if rollOver(13) then
  10.     set the visible of sprite 13 to 1
  11.   end if
  12.   if rollOver(14) then
  13.     set the visible of sprite 14 to 1
  14.   end if
  15.   if rollOver(15) then
  16.     set the visible of sprite 15 to 1
  17.   end if
  18.   if rollOver(16) then
  19.     set the visible of sprite 16 to 1
  20.   end if
  21.   if rollOver(17) then
  22.     set the visible of sprite 17 to 1
  23.   end if
  24.   if rollOver(18) then
  25.     set the visible of sprite 18 to 1
  26.   end if
  27.   if rollOver(19) then
  28.     set the visible of sprite 19 to 1
  29.   else
  30.     nothing()
  31.   end if
  32. end
  33.  
  34. on exitFrame
  35.   go(marker(0))
  36. end
  37.